encoding/pem.lineBreaker.used (field)
9 uses
encoding/pem (current package)
pem.go#L189: used int
pem.go#L196: if l.used+len(b) < pemLineLength {
pem.go#L197: copy(l.line[l.used:], b)
pem.go#L198: l.used += len(b)
pem.go#L202: n, err = l.out.Write(l.line[0:l.used])
pem.go#L206: excess := pemLineLength - l.used
pem.go#L207: l.used = 0
pem.go#L223: if l.used > 0 {
pem.go#L224: _, err = l.out.Write(l.line[0:l.used])
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |